home *** CD-ROM | disk | FTP | other *** search
- this._x += vx;
- this._y += vy;
- ap = 100 * life / 70;
- this._xscale = ap;
- this._yscale = ap;
- vx += (random(51) - 25) / ap;
- vy += (random(51) - 25) / ap;
- life -= 1;
- if(Number(life) < 0)
- {
- this.removeMovieClip();
- }
-